From 0070dd5e51166ab42875c6409c9506c8881a3275 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 29 Mar 2004 12:05:16 +0000 Subject: [PATCH] (ucs-insert): Fix the error message. --- lisp/international/ucs-tables.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/international/ucs-tables.el b/lisp/international/ucs-tables.el index a7d05610a80..5574cf3d954 100644 --- a/lisp/international/ucs-tables.el +++ b/lisp/international/ucs-tables.el @@ -1249,7 +1249,7 @@ Interactively, prompts for a hex string giving the code." (interactive "sUnicode (hex): ") (or (integerp arg) (setq arg (string-to-number arg 16))) - (let ((c (decode-char 'ucs arg ))) + (let ((c (decode-char 'ucs arg))) (if c (insert c) (if (or (< arg 0) (> arg #x10FFFF)) -- 2.30.2